home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / mrcry204.zip / POLY.EKA < prev    next >
Text File  |  1991-03-04  |  278b  |  13 lines

  1. ; Demo of polynomial root finder.
  2. ; Finds all real and complex roots of a polynomial.
  3.  
  4. ; Find roots to x^3 - x^2 - x - 1 = 0.
  5. f(x) := POLY(x,1,-1,-1,-1)
  6.  
  7. SOLVE f
  8.  
  9. ; Find 10-th roots of unity, solutions to x^10 = 1.
  10. g(x) := POLY(x,1,0,0,0,0,0,0,0,0,0,-1)
  11.  
  12. ; SOLVE g
  13.